Link the documentation site from the app footer - #39
Conversation
The docs had no entry point from the product — users had to already know the URL. The footer now carries a Documentation link.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Codex Review SummaryThis comment shows the latest Codex review activity on this pull request.
ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
Codex reacts with 👀 while any review is running, comments if it has suggestions, and reacts with 👍 once all reviews finish with no findings. |
There was a problem hiding this comment.
🟢 Approval recommended
The change set is small and targeted, with only minor security/a11y polish suggested for the new external footer link.
Pull request overview
This PR adds a first-party entry point to the HexKit documentation by placing a persistent “Documentation” link in the global app footer, aligned opposite the existing EDB bridge status indicator.
Changes:
- Added an external “Documentation” link to the global footer in
App.tsx. - Updated footer layout to
space-betweenand introduced styling for the new docs link. - Switched EDB status indicator text colors to shared design tokens for consistent theming.
File summaries
| File | Description |
|---|---|
| src/App.tsx | Adds the “Documentation” anchor to the global footer alongside EdbBridgeStatus. |
| src/App.css | Adjusts footer layout and introduces styling for the new docs link (plus token-based text colors). |
Review details
- Files reviewed: 2/2 changed files
- Comments generated: 2
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
| .app-footer-docs:hover { | ||
| color: var(--text-primary); | ||
| text-decoration: underline; | ||
| } |
| <a | ||
| className="app-footer-docs" | ||
| href="https://hexdocs.thally.app" | ||
| target="_blank" | ||
| rel="noreferrer" | ||
| > |
The docs site had no entry point from the product itself — you had to already know the URL. The global footer now carries a
Documentationlink to https://hexdocs.thally.app, left-aligned opposite the EDB status.